home *** CD-ROM | disk | FTP | other *** search
/ PC Home 109 / PC Home 109.iso / data1.cab / Program_Files / be006.dxr / 00003.ls < prev    next >
Encoding:
Text File  |  2001-03-02  |  811 b   |  35 lines

  1. on exitFrame
  2.   handcursor(7)
  3.   handcursor(8)
  4.   if rollOver(2) then
  5.     set the visible of sprite 5 to 0
  6.     set the visible of sprite 4 to 1
  7.     set the visible of sprite 6 to 0
  8.   end if
  9.   if rollOver(7) then
  10.     set the visible of sprite 5 to 1
  11.     set the visible of sprite 4 to 0
  12.     set the visible of sprite 6 to 0
  13.   end if
  14.   if rollOver(8) then
  15.     set the visible of sprite 5 to 0
  16.     set the visible of sprite 4 to 0
  17.     set the visible of sprite 6 to 1
  18.   end if
  19.   if the mouseV > 480 then
  20.     set the visible of sprite 5 to 0
  21.     set the visible of sprite 4 to 1
  22.     set the visible of sprite 6 to 0
  23.   end if
  24.   if the mouseH > 640 then
  25.     set the visible of sprite 5 to 0
  26.     set the visible of sprite 4 to 1
  27.     set the visible of sprite 6 to 0
  28.   end if
  29.   go(the frame)
  30. end
  31.  
  32. on mouseUp
  33.   go(100)
  34. end
  35.